home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000354_fdc@watsun.cc.columbia.edu_Sat Sep 1 12:48:19 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  45 lines

  1. Article: 12738 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: if exist
  6. Date: 1 Sep 2001 16:48:09 GMT
  7. Organization: Columbia University
  8. Lines: 28
  9. Message-ID: <9mr3g9$43f$1@newsmaster.cc.columbia.edu>
  10. References: <9mp7sp0vm6@enews4.newsguy.com> <9mphnl$2jn$1@newsmaster.cc.columbia.edu>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 999362889 4207 128.59.39.2 (1 Sep 2001 16:48:09 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 1 Sep 2001 16:48:09 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12738
  16.  
  17. In article <9mphnl$2jn$1@newsmaster.cc.columbia.edu>,
  18. Jeffrey Altman <jaltman@watsun.cc.columbia.edu> wrote:
  19. : In article <9mp7sp0vm6@enews4.newsguy.com>,
  20. : Grinder <grinder@no.spam.maam.com> wrote:
  21. : : I'm re-writing an mskermit script for use with kermit-95.  It's
  22. : : gone very smoothly, with the exception of one command.  Here's
  23. : : the relevant portion of the script:
  24. : : _____________
  25. : : 
  26. : : :CHECKCLAIM
  27. : : pause 1
  28. : : if exist c:\projects\rlisys\rlinsf31\cache\queue\*.zip goto
  29. : : SENDCLAIM
  30. : : goto SENDZERO
  31. : IF EXIST does not work with wildcards.  Instead use
  32. :   IF \Ffiles(*.zip) GOTO SENDCLAIM
  33. : \Ffiles() returns a numeric value.  0 is treated as FALSE,
  34. : any other value is TRUE.
  35. Since this question keeps coming up, a new section on the IF command has
  36. been added to the Kermit Script Portability Reference:
  37.  
  38.   http://www.columbia.edu/kermit/scriptref.html
  39.  
  40. - Frank
  41.